home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / ada / gwuada_9.zip / MACHINEP.H < prev    next >
C/C++ Source or Header  |  1992-10-05  |  735b  |  37 lines

  1. /*
  2.  * Copyright (C) 1985-1992  New York University
  3.  * 
  4.  * This file is part of the Ada/Ed-C system.  See the Ada/Ed README file for
  5.  * warranty (none) and distribution info and also the GNU General Public
  6.  * License for more details.
  7.  
  8.  */
  9.  
  10. #ifndef DBLE_MUL
  11. void dble_mul();
  12. #endif
  13. #ifndef DBLE_RDIV
  14. void dble_rdiv();
  15. #endif
  16. #ifndef WORD_ADD
  17. extern int word_add(int, int, int *);
  18. #endif
  19. #ifndef WORD_MUL
  20. int word_mul(int, int, int *);
  21. #endif
  22. #ifndef WORD_SUB
  23. extern int word_sub(int, int, int *);
  24. #endif
  25. #ifndef LONG_ADD
  26. long long_add(long, long, int *);
  27. #endif
  28. #ifndef LONG_MUL
  29. long long_mul(long, long, int *);
  30. #endif
  31. #ifndef LONG_SUB
  32. long long_sub(long, long, int *);
  33. #endif
  34. #ifndef MOVE_MEM
  35. void move_mem(int *, int *, int);
  36. #endif
  37.